home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / bluez.postinst < prev    next >
Text File  |  2009-09-24  |  2KB  |  59 lines

  1. #!/bin/sh
  2. # snippet from http://www.dpkg.org/dpkg/ConffileHandling
  3.  
  4. # Move a conffile without triggering a dpkg question
  5. mv_conffile() {
  6.     OLDCONFFILE="$1"
  7.     NEWCONFFILE="$2"
  8.  
  9.     if [ -e "$OLDCONFFILE" ]; then
  10.         echo "Preserving user changes to $NEWCONFFILE ..."
  11.         mv -f "$NEWCONFFILE" "$NEWCONFFILE".dpkg-new
  12.         mv -f "$OLDCONFFILE" "$NEWCONFFILE"
  13.     fi
  14. }
  15.  
  16. set -e
  17. case "$1" in
  18.     configure)
  19.         if [ -e /etc/init.d/bluez-utils ]; then
  20.             update-rc.d -f bluez-utils remove
  21.             # maybe a (medium/low debconf?) notice is best suited here
  22.         fi
  23.  
  24.         # use MAKEDEV instead of the original bluez script below as per policy 10.6
  25.         if [ -x /dev/MAKEDEV ]; then
  26.             echo "Creating device nodes ..."
  27.             cd /dev && ./MAKEDEV bluetooth 1>/dev/null 2>/dev/null
  28.         fi
  29.  
  30.         # reload dbus config file
  31.         if [ -x /etc/init.d/dbus ]; then
  32.             invoke-rc.d dbus force-reload || true
  33.         fi
  34.  
  35.         #reload udev rules
  36.         if [ -x /etc/init.d/udev ]; then
  37.             invoke-rc.d udev reload || true
  38.         fi
  39.  
  40.         ;;
  41.  
  42.     *)
  43.         echo "postinst called with unknown argument \`$1'" >&2
  44.         exit 0
  45.     ;;
  46. esac
  47.  
  48. # Automatically added by dh_installinit
  49. if [ -x "/etc/init.d/bluetooth" ]; then
  50.     update-rc.d bluetooth start 25 2 3 4 5 . stop 74 0 1 6 . >/dev/null
  51.     if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
  52.         invoke-rc.d bluetooth start || exit $?
  53.     else
  54.         /etc/init.d/bluetooth start || exit $?
  55.     fi
  56. fi
  57. # End automatically added section
  58.  
  59.